home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / tools / mg / src.lzh / amiga / iconify.h < prev    next >
C/C++ Source or Header  |  1990-05-23  |  978b  |  29 lines

  1. /*
  2.  * :ts=8 bk=0
  3.  * 
  4.  * iconify.h:    Should be used by all programs intending to use iconify.c.
  5.  * 
  6.  * Copyright 1987 by Leo L. Schwab. Permission is hereby granted for use in any
  7.  * and all programs, both Public Domain and commercial in nature, provided
  8.  * this Copyright notice is left intact.  Purveyors of programs, at their
  9.  * option, may wish observe the following conditions (in the spirit of
  10.  * hackerdom): 1: You send me a free, registered copy of the program that
  11.  * uses the iconify feature, 2: If you're feeling really nice, a mention in
  12.  * the program's documentation of my name would be neat.
  13.  * 
  14.  * 8712.10        (415) 456-3960
  15.  */
  16.  
  17. #define    ICON_IMAGE    0
  18. #define    ICON_BORDER    1
  19. #define    ICON_FUNCTION    2
  20.  
  21. /* Suggested icon size for a standard (640 x 200) WorkBench screen.  */
  22. #define    ICONWIDTH    ((UWORD) 50)
  23. #define    ICONHEIGHT    ((UWORD) 25)
  24.  
  25. #ifndef    NO_PROTO
  26. #include <exec/types.h>
  27. int iconify     PROTO((UWORD *, UWORD *, UWORD, UWORD, struct Screen *, APTR, int));
  28. #endif
  29.